/*arabic font import */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@700&display=swap');

/* import fonts from fonts.css file */ 
@import url(./fonts.css);

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700;900&display=swap');


/* css variables */ 
@import url(./partials/_variables.css);

/* import global styling */ 
@import url(./partials/_global.css);

* {
    font-family: cairo,sans-serif;
}


/* start navigation */ 
.header_area{
    font-family: 'Cairo', sans-serif;
}
.header_area .main-menu .navbar .navbar-brand{
    padding: 0 2rem 0 5rem;
}
.header_area .main-menu .navbar .navbar-brand img{
    width: 180px;
}

.header_area .main-menu .back-colr:hover {
    background: #f5c75d;
    border-radius:50px ;
    
}
.header_area .main-menu .navbar{
    padding: 1rem 20rem ;
}

.header_area .main-menu .nav-item .nav-link{
    font: normal 500 15px/2px var(--roboto);
    text-transform: uppercase;
    padding: 1.7rem;
    color: var(--nav-color);
}

.header_area .main-menu .navbar-nav .active a{
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header_area .main-menu .navbar-nav a:hover{
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header_area .main-menu .nav-item .btn{
    background-color: var(--primary-color);
    color:white;
    margin-top: 20px;
    margin-right: 100px;
}

.header_area .main-menu .nav-item .btn:hover {
    background-color: var(--secondery-color);
    transition: 0.5s;
    color:black;
}


/* end navigation */ 

/* start banner */ 

.event-banner {
    font-family: 'Cairo', sans-serif;
    background:url(/img/company.jpg) no-repeat;
    background-size: cover;
    width: 100%;
    height: 27vw;
}

.banner-content {
    color:#fff;
    width: 55%;
    padding-top:10vw ;
    padding-left: 75vw;
}

.event-banner .banner-content h3{
    padding-top: 35%;
    font-weight: 500;
}

.event-banner.banner-content h3::after{
    content: " ";
    height: 2px;
    width: 4vw;
    background: var(--primary-color);
    display: inline-block;
    margin-left: 50%;
    transform: translateY(-10px);
}
.event-banner .banner-content h1 {
    color: white;
    font-size: 60px;
}

/* end banner */ 

/* start cards */ 
/* Utility stylings */
img{
    width: 100%;
    display: block;
}
.container{
    width: 88vw;
    margin: 0 auto;
}
.lg-title,
.md-title,
.sm-title{
    padding: 0.6rem 0;
    text-transform: capitalize;
}
.lg-title{
    font-family: 'Cairo', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    padding: 1.3rem 0;
    opacity: 0.9;
}
.md-title{
    font-size: 2rem;
    font-family: 'Roboto', sans-serif;
}
.sm-title{
    font-weight: 300;
    font-size: 1rem;
    text-transform: uppercase;
}
.text-light{
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    opacity: 0.5;
    margin: 0.4rem 0;
}

/* product section */
.products{
    background: var(--alice-blue);
    padding: 3.2rem 0;
    font-family: 'Quicksand', sans-serif;
}
.products .container .product {
    
}

.products .text-light{
    text-align: center;
    width: 70%;
    margin: 0.9rem auto;
}
.product{
    margin: 2rem;
    position: relative;
    display:grid;
    grid-template-columns: 1fr;
    background: whitesmoke;
    border-radius: 20px;
    text-align:center;
}



.product-content{
    padding: 10px;
    cursor: pointer;
    
}
.product-img{
    box-shadow: 0 0 20px 10px var(--white-light);
    margin: 0 auto;
    transition: background 0.5s ease;
}

.product-img img {
    border-radius:20px 20px 0 0;
    width:100%;
    height:200px;
    
}

.product-btns{
    display: flex;
    justify-content: center;
    margin-top: 1.4rem;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.btn-cart, .btn-buy{
    background: var(--primary-color);
    color: white;
    border: 1px solid black;
    padding: 0.8rem 0;
    width: 125px;
    font-family: inherit;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.6s ease;
}
.btn-cart{
    background: black;
    color: black;
}


.product-info{
    background: whitesmoke;
    padding: 2rem;
    font-weight: 500;
    border-radius:0 0 20px 20px;
}
.product-info-top{
    display: flex;
    justify-content: center;
    align-items: center;
}

.sm-title{
    font-weight: bold;
    text-align:center;
}

.rating span{
    color: var(--carribean-green);
}
.product-name{
    color: black;
    display: block;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}
.product-price{
    padding-top: 0.6rem;
    padding-right: 0.6rem;
    display: inline-block;
}

.product-img img{
    transition: transform 0.6s ease;
}
.product:hover .product-img img{
    transform: scale(1.1);
}
.product-btns {
    font-family: 'Cairo', sans-serif;
}

.product:hover .product-btns{
    opacity: 1;
}
.off-info .sm-title{
    background: var(--carribean-green);
    color: black;
    display: inline-block;
    padding: 0.5rem;
    position: absolute;
    top: 0;
    left: 0;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    z-index: 1;
    letter-spacing: 3px;
    cursor: pointer;
}

/* end cards */ 
.nav-active {
    background:var(--primary-color);
}


.inner-navbar {
    border-radius:10px;
    overflow: hidden;
    background-color: #333; 
    font-weight: 300;
    font-family: cairo,sans-serif;
  }
  
  .inner-navbar a {
    float:right;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  .inner-navbar a:hover {
    color:var(--primary-color);
    transition: 0.5s;
  }

/* start Footer */ 
.my-5 {
    background: #fff;
    font-family: 'Cairo', sans-serif;
}

footer ul li {
    margin-top: 25px;
    letter-spacing: 1px;
}

footer ul li a {
    color: var(--nav-color);
}
footer ul li a:hover{
    color:black;
}

footer ul li p {
    color: var(--nav-color);
}

/* Media Queries */
@media screen and (min-width: 992px){
    .product-items{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .product-col-r-bottom{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (min-width: 1200px){
    .product-items{
        grid-template-columns: repeat(3, 1fr);
    }
    .product{
        margin-right: 1rem;
        margin-left: 1rem;
    }
    .products .text-light{
        width: 50%;
    }
}

@media screen and (min-width: 1336px){
    .product-items{
        grid-template-columns: repeat(4, 1fr);
    }
    .product-collection-wrapper{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .flex{
        height: 60vh;
    }
    .product-col-left{
        height: 121.5vh;
    }
}

/* End Footer */ 